1 /** 2 * Authors: ponce 3 * Date: July 28, 2014 4 * License: Licensed under the MIT license. See LICENSE for more information 5 * Version: 1.0.2 6 */ 7 module colorize; 8 9 public import colorize.colors; 10 11 /** 12 * An enum listing possible colors for terminal output, useful to set the color 13 * of a tag. Re-exported from d-colorize in dub.internal.colorize. See the enum 14 * definition there for a list of possible values. 15 */ 16 alias Color = fg; 17 alias Background = bg; 18 19 /** 20 * An enum listing possible text "modes" for terminal output, useful to set 21 * the text to bold, underline, blinking, etc... 22 * Re-exported from d-colorize in dub.internal.colorize. See the enum 23 * definition there for a list of possible values. 24 */ 25 alias Mode = mode;